home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
autofx
/
oilpaint.ifx.pre
< prev
next >
Wrap
Text File
|
2004-08-03
|
467b
|
28 lines
/*
* OilPaint.ifx.pre
* Written by Thomas Krehbiel
*
* Template for AutoFX scripts.
*
* Inputs:
* Word(Arg(1),1) = Sequence number (?)
* Word(Arg(1),2) = Total number of frames (N)
*
* Returns:
* 0 if successful, non-zero on failure
*
*/
OPTIONS RESULTS
base = 'Autofx_OilPaint_'
a = GETCLIP(base||'Radius') ; IF a = "" THEN a = 2
RequestSlider '"OilPaint Radius:"' 2 50 a
IF rc ~= 0 THEN EXIT rc
CALL SETCLIP(base||'Radius', result)
EXIT